home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Communication / PopOver / Example.scripts / popOver.CRON.script next >
Encoding:
Text File  |  1993-04-19  |  449 b   |  21 lines

  1. #!/bin/sh
  2. #
  3. # Example cron job to bring SLIP up, retrieve your mail, then
  4. # bring SLIP down.  /usr/dialupip/bin/slipup and /usr/dialupip/bin/slipdown
  5. # would need to run set-uid root:
  6. #
  7. #      # chmod u+s /usr/dialupip/bin/slipup
  8. #      # chmod u+s /usr/dialupip/bin/slipdown
  9. #
  10. # This is not recommended for security conscious users.
  11. #
  12.  
  13. # Bring SLIP up
  14. /usr/dialupip/bin/slipup
  15.  
  16. # Retrieve mail
  17. popOver
  18.  
  19. # Bring SLIP down
  20. /usr/dialupip/bin/slipdown
  21.